home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue70 / system / Listing3.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-05-02  |  114 b   |  6 lines

  1. program xapp;
  2. uses Libc;
  3. begin
  4.   if fork = 0 then Writeln ('New Process') else Writeln ('Old Process');
  5. end.
  6.